home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Online / CNetDemo / cnet / sdk / include / charges.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-04  |  440 b   |  26 lines

  1. #ifndef CNET_CHARGES
  2. #define CNET_CHARGES
  3.  
  4. struct   ChargeType
  5.    {
  6.    struct   ChargeType  *next;
  7.  
  8.    short                id;
  9.  
  10.    short                schedule;
  11.    short                type;
  12.    short                units;
  13.  
  14.    ULONG                fcredits;
  15.    ULONG                bcredits;
  16.    };
  17.  
  18. struct   ChargeSet
  19.    {
  20.    struct   ChargeSet   *next;
  21.    short                schedule;
  22.    short                ACC[32][80];
  23.    };
  24.  
  25. #endif
  26.